home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 04 - 1988 / 04.09 Sep 88 / 4d stuff / Source Files / Doubler.p < prev    next >
Encoding:
Text File  |  1994-11-06  |  190 b   |  12 lines  |  [TEXT/MPS ]

  1. Program Ext_Doubler;
  2. Var        DumInt:Integer;
  3.  
  4. procedure Doubler(var TheInt:Integer);
  5. begin
  6.     TheInt:=TheInt*2;
  7. end;    {Doubler}
  8.  
  9. Begin
  10.     Doubler(DumInt); {Used for compile only}
  11. End.        {Main Block}
  12.